4a73f7f640b2304d7503ff008ea3b722141aa66f,src/org/openstreetmap/josm/gui/download/PlaceSelection.java,PlaceSelection,addGui,#DownloadDialog#,134
Before Change
scrollPane.setPreferredSize(new Dimension(200, 200));
panel.add(scrollPane, BorderLayout.CENTER);
gui.addDownloadAreaSelector(panel, tr("Areas around places"));
scrollPane.setPreferredSize(scrollPane.getPreferredSize());
tblSearchResults.getSelectionModel().setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
After Change
scrollPane.setPreferredSize(new Dimension(200, 200));
panel.add(scrollPane, BorderLayout.CENTER);
if (gui != null)
gui.addDownloadAreaSelector(panel, tr("Areas around places"));
scrollPane.setPreferredSize(scrollPane.getPreferredSize());
tblSearchResults.getSelectionModel().setSelectionMode(ListSelectionModel.SINGLE_SELECTION);